home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung 2 / Power-Programmierung CD 2 (Tewi)(1994).iso / gnu / djgpp / src / libgplus.5 / libgplus / etc / graph / eplotfil.cc < prev    next >
Encoding:
C/C++ Source or Header  |  1993-05-04  |  248 b   |  14 lines

  1. #pragma implementation
  2. #include "ePlotFile.h"
  3.  
  4. ePlotFile& ePlotFile:: alabel (alabel_xadj x_adjust,
  5.                    alabel_yadj y_adjust, const char *s)
  6. {
  7.   cmd ('T');
  8.   cmd (x_adjust);
  9.   cmd (y_adjust);
  10.   *this << s;
  11.   *this << "\n";
  12.   return *this;
  13. };
  14.